PCA Index Dashboard Examples#
x = [1, 2, 3]
y = [i**2 for i in x]
plt.plot(x, y, marker='o')
plt.title('y = x^2')
plt.xlabel('x')
plt.ylabel('y')
plt.grid(True)
plt.show()
This script was last run at 2024-03-09 19:36:53.231465+00:00 (UTC)
In US/Central Time, this is 2024-03-09 13:36:53.231465-06:00